home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / flight-of-the-museum.swf / scripts / engine / levelData / LevelData.as < prev   
Encoding:
Text File  |  2011-10-17  |  487 b   |  26 lines

  1. package engine.levelData
  2. {
  3.    public class LevelData
  4.    {
  5.        
  6.       
  7.       protected var _missionBoundsHint:String;
  8.       
  9.       protected var _missionDescription:String;
  10.       
  11.       protected var _missionBoundsX:Number;
  12.       
  13.       protected var _goalParameters:Array;
  14.       
  15.       public function LevelData()
  16.       {
  17.          super();
  18.       }
  19.       
  20.       public function buildLevel() : *
  21.       {
  22.          var giantTentacle:* = undefined;
  23.       }
  24.    }
  25. }
  26.